home *** CD-ROM | disk | FTP | other *** search
- property psp_mysprite, psp_myconstraintsprite, pi_targeth
-
- on beginSprite me
- psp_mysprite = sprite(me.spriteNum)
- psp_myconstraintsprite = sprite(me.spriteNum - 1)
- settarget(me)
- end
-
- on exitFrame me
- pi_targeth = the mouseH
- psp_mysprite.locH = psp_mysprite.locH + ((pi_targeth - psp_mysprite.locH) / 200.0)
- if psp_mysprite.locH > (psp_myconstraintsprite.right - psp_mysprite.width) then
- psp_mysprite.locH = psp_myconstraintsprite.right - psp_mysprite.width
- end if
- if psp_mysprite.locH < psp_myconstraintsprite.left then
- psp_mysprite.locH = psp_myconstraintsprite.left
- end if
- end
-
- on settarget me
- pi_targeth = random(psp_myconstraintsprite.width) + psp_myconstraintsprite.locH
- end
-
- on getPropertyDescriptionList me
- return [#myproperty: [#comment: "comment:", #format: #float, #range: [#min: 0, #max: 180], #default: 10]]
- end
-